home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 25.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  560b  |  28 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    c=10;
  11.     switch(c) {
  12.         case 1:
  13.             printf("matched case 1\n");
  14.         case 3:
  15.             printf("matched case 3\n");
  16.         case 3+3:
  17.             printf("matched case 6\n");
  18.         case 'a':
  19.             printf("matched case a\n");
  20.         case 'b':
  21.             printf("matched case b\n");
  22.         case 10:
  23.             printf("matched case 10\n");
  24.         default:
  25.             printf("default\n");
  26.     }
  27. }
  28.